Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632704 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/28 - Music Player

Music/ cody/swapnilsparsh/30DaysOfJavaScript/28 - Music Player/Music/
3 Items
  • Alone.mp3
  • Sugar.mp3
  • Peaches.mp3
  • font/ cody/swapnilsparsh/30DaysOfJavaScript/28 - Music Player/font/
    1 Items
  • sans.ttf
  • images/ cody/swapnilsparsh/30DaysOfJavaScript/28 - Music Player/images/
    4 Items
  • Peaches.jpg
  • favicon.png
  • Sugar.jpg
  • Alone.jpg
  • Music.js cody/swapnilsparsh/30DaysOfJavaScript/28 - Music Player/Music.js
    184 Views
    0 Comments
    let play = document.getElementById("Play");
    let previous = document.getElementById("Previous");
    let next = document.getElementById("Next");
    let audio = document.querySelector("audio");
    let img = document.querySelector("img");
    let title = document.getElementById("title");
    let artist = document.getElementById("artist");
    let songs = [
    Music.css cody/swapnilsparsh/30DaysOfJavaScript/28 - Music Player/Music.css
    119 Views
    0 Comments
    * {
    margin: 0;
    padding: 0%;
    box-sizing: border-box;
    font-size: 62.5%;
    font-family: "sans";
    }

    index.html cody/swapnilsparsh/30DaysOfJavaScript/28 - Music Player/index.html
    317 Views
    0 Comments
    <!DOCTYPE html>
    <html lang="en">

    <head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Music Player</title>